:root {
  --bg: #07111f;
  --bg-soft: #0d1d34;
  --panel: rgba(255, 255, 255, 0.12);
  --panel-strong: rgba(255, 255, 255, 0.18);
  --line: rgba(255, 255, 255, 0.16);
  --text: #edf4ff;
  --muted: #b9c9e3;
  --primary: #54a8ff;
  --primary-strong: #2187ff;
  --accent: #7cf7d4;
  --whatsapp: #25d366;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --max-width: 1180px;
  --nav-height: 82px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(84, 168, 255, 0.28), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(124, 247, 212, 0.14), transparent 22%),
    linear-gradient(135deg, #07111f 0%, #0c1930 45%, #091220 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -2;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.7;
}

body::before {
  width: 320px;
  height: 320px;
  top: 90px;
  right: -60px;
  background: radial-gradient(circle, rgba(84, 168, 255, 0.28), transparent 70%);
  animation: floatOrb 12s ease-in-out infinite;
}

body::after {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(124, 247, 212, 0.18), transparent 72%);
  animation: floatOrb 15s ease-in-out infinite reverse;
}

a {
  color: inherit;
  text-decoration: none;
}

section[id] {
  scroll-margin-top: 120px;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: absolute;
  top: 120px;
  right: 4%;
  width: min(420px, 42vw);
  aspect-ratio: 1;
  background: url("../Images/logo.jpeg") center/contain no-repeat;
  opacity: 0.08;
  filter: saturate(0) brightness(1.8);
  pointer-events: none;
  z-index: -1;
  animation: drift 16s ease-in-out infinite;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  isolation: isolate;
}

.nav {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 22px;
  border-radius: 999px;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled .nav {
  transform: translateY(4px);
  background: linear-gradient(180deg, rgba(10, 25, 48, 0.92), rgba(10, 25, 48, 0.72));
  border-color: rgba(255, 255, 255, 0.12);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  font-size: 1.15rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.nav-toggle:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 280px;
  margin-left: auto;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.brand-text {
  text-align: right;
  max-width: 14rem;
  line-height: 1.16;
  transition: transform 0.32s ease;
}

.brand-text strong {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-text span {
  display: block;
  font-size: 0.72rem;
  line-height: 1.34;
  color: var(--muted);
}

.brand img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.hero {
  padding: 24px 0 12px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 24px;
  align-items: center;
  min-height: min(650px, calc(100vh - 150px));
}

.hero-copy,
.hero-visual,
.contact-card,
.stat-card {
  border-radius: var(--radius);
}

.hero-copy {
  min-width: 0;
  padding: clamp(28px, 3vw, 42px);
  position: relative;
  overflow: visible;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: auto auto -45px -45px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 247, 212, 0.2), transparent 70%);
  z-index: 0;
}

.hero-copy>* {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(124, 247, 212, 0.08);
  border: 1px solid rgba(124, 247, 212, 0.16);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 3.08vw, 3.52rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  max-width: 100%;
}

.hero-title-brand,
.hero-title-service {
  display: block;
}

.hero-title-brand {
  display: inline-block;
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 16px;
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(237, 244, 255, 0.88);
}

.hero-title-brand::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 247, 212, 0.95), rgba(84, 168, 255, 0.82));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 18px rgba(84, 168, 255, 0.18);
}

.hero-title-service {
  display: block;
  font-size: 0.82em;
  width: auto;
  max-width: 12.5ch;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
  background: linear-gradient(90deg, #ffffff 0%, #83c7ff 45%, #7cf7d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  overflow-wrap: break-word;
}

.hero p {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.82;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 170px;
  padding: 14px 20px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  color: #061324;
  background: linear-gradient(135deg, var(--accent), #d6fff4);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.hero-point {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-point:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.hero-point strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.35;
}

.hero-point span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.hero-visual {
  padding: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  transform-style: preserve-3d;
  transition: transform 0.32s ease;
}

.hero-visual--desktop-only {
  padding: 18px;
  min-height: 470px;
  align-self: center;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 18%, rgba(159, 206, 255, 0.16), transparent 26%),
    radial-gradient(circle at 82% 78%, rgba(124, 247, 212, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(84, 168, 255, 0.24), transparent 30%),
    radial-gradient(circle at 78% 78%, rgba(124, 247, 212, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  opacity: 1;
  transform: scale(1.06);
}

.hero-visual--desktop-only::before {
  display: block;
  opacity: 0.72;
  transform: scale(1.02);
}

.hero-visual--desktop-only::after {
  content: "";
  position: absolute;
  inset: auto 10% -18% 10%;
  height: 42%;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(84, 168, 255, 0.22) 0%,
      rgba(124, 247, 212, 0.12) 32%,
      rgba(84, 168, 255, 0.04) 55%,
      transparent 74%);
  filter: blur(28px);
  opacity: 0.78;
  z-index: 0;
  pointer-events: none;
}

.hero-visual>* {
  position: relative;
  z-index: 1;
}

.hero-logo-shell {
  width: min(100%, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  perspective: 1400px;
}

@media (max-width: 1280px) and (min-width: 1025px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(1.92rem, 2.84vw, 3.06rem);
  }

  .hero-title-service {
    width: auto;
    max-width: 13ch;
  }
}

@media (min-width: 1281px) {
  .hero h1 {
    font-size: clamp(1.98rem, 2.9vw, 3.28rem);
  }
}

.hero-logo-card {
  width: 100%;
}

.hero-visual .hero-logo-card {
  position: relative;
  width: min(100%, 430px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.11)),
    linear-gradient(135deg, rgba(159, 206, 255, 0.08), rgba(124, 247, 212, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(1.18);
  -webkit-backdrop-filter: blur(20px) saturate(1.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
  will-change: transform;
}

.hero-visual .hero-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.2), transparent 26%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02) 38%, transparent 62%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-visual .hero-logo-card::after {
  content: "";
  position: absolute;
  top: -28%;
  left: -16%;
  width: 58%;
  height: 160%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03) 42%, transparent 68%);
  transform: rotate(12deg);
  opacity: 0.72;
  pointer-events: none;
}

.hero-visual .hero-logo-card:hover {
  transform: translateY(-2px) rotateX(1deg) rotateY(-1.2deg);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(124, 247, 212, 0.08),
    0 0 42px rgba(84, 168, 255, 0.12);
  border-color: rgba(124, 247, 212, 0.24);
}

.hero-logo-copy {
  min-width: 0;
  display: block;
}

.hero-logo-heading {
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.24;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #ffffff 0%, #83c7ff 45%, #7cf7d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-card {
  width: min(100%, 420px);
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
  animation: floatCard 7s ease-in-out infinite;
}

.logo-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 18px;
}

.logo-card h2 {
  font-size: 1.65rem;
  margin-bottom: 8px;
}

.logo-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.hero-logo-card img {
  width: 100%;
  max-width: none;
  margin-bottom: 18px;
}

.hero-logo-card p {
  margin-bottom: 0;
  max-width: none;
  font-size: 0.94rem;
  line-height: 1.82;
  letter-spacing: 0.012em;
  text-wrap: pretty;
  background: linear-gradient(90deg, #edf6ff 0%, #d7eaff 45%, #9fceff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-logo-footer {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  text-align: left;
  font-size: 0.86rem;
  line-height: 1.55;
  flex-wrap: wrap;
  row-gap: 6px;
}

.hero-logo-footer .route-dot {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 5px rgba(124, 247, 212, 0.07);
}

.route-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #dce9ff;
  font-size: 0.94rem;
}

.route-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 0 0 8px rgba(124, 247, 212, 0.08);
}

.section {
  padding: 22px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.section-heading p {
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.78;
}

#vorteile .section-heading {
  align-items: center;
  justify-content: center;
  text-align: center;
}

#vorteile .section-heading>div {
  width: 100%;
}

#vorteile .section-heading h2 {
  margin-bottom: 0;
  text-align: center;
}

.section-heading--flush {
  margin-bottom: 0;
}

.contact-card .section-heading {
  position: relative;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}

.contact-card .section-heading>div {
  position: relative;
  width: min(100%, 42rem);
  padding: 24px 24px 22px;
  z-index: 1;
}

.contact-card .section-heading>div::before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  top: 6px;
  bottom: 26px;
  background:
    radial-gradient(circle at 18% 50%, rgba(84, 168, 255, 0.42), transparent 34%),
    linear-gradient(90deg, rgba(84, 168, 255, 0.34) 0%, rgba(131, 199, 255, 0.18) 55%, rgba(124, 247, 212, 0.16) 100%);
  border-radius: 999px 999px 56px 50px / 68px 68px 36px 34px;
  transform: rotate(-3.2deg) skewX(-8deg);
  opacity: 0.95;
  z-index: -1;
}

.contact-card .section-heading>div::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  top: 2px;
  height: 68px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(159, 206, 255, 0.2), rgba(255, 255, 255, 0.01));
  transform: rotate(2.2deg);
  border-radius: 999px;
  opacity: 0.78;
  z-index: -1;
}

.contact-card .section-heading h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 14px;
}

.contact-card .section-heading p,
.contact-note {
  max-width: 54ch;
  margin: 8px auto 0;
  text-align: center;
}

.benefits-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.benefits-viewport {
  overflow: hidden;
  padding: 10px 0 6px;
  touch-action: pan-y;
  cursor: grab;
}

.benefits-viewport:active {
  cursor: grabbing;
}

.benefits-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.benefit-slide {
  min-width: 100%;
  padding: 8px;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.slider-arrow {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.slider-arrow:hover {
  transform: translateY(-2px) scale(1.03);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(124, 247, 212, 0.22);
}

.slider-arrow span {
  font-size: 1.9rem;
  line-height: 1;
  transform: translateY(-1px);
}

.slider-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 0.28s ease, background 0.28s ease, width 0.28s ease;
}

.slider-dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scale(1.02);
}

.stat-card {
  width: min(100%, 520px);
  min-height: 144px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  position: relative;
  overflow: hidden;
  transform: translateZ(0) scale(0.92) rotateY(16deg);
  transform-origin: center center;
  opacity: 0.62;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, box-shadow 0.45s ease;
}

.benefit-slide.is-active .stat-card {
  transform: translateZ(0) scale(1) rotateY(0deg);
  opacity: 1;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: auto auto -32px -32px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 247, 212, 0.16), transparent 72%);
  pointer-events: none;
}

.stat-text {
  position: relative;
  padding-left: 22px;
  color: #f7fbff;
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.7;
  max-width: 30ch;
  text-wrap: pretty;
}

.stat-text::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1.35;
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 22px;
  align-items: stretch;
}

.contact-card {
  padding: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 247, 212, 0.62), rgba(84, 168, 255, 0.52), transparent);
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: auto -25px -25px auto;
  width: 130px;
  height: 130px;
  border-radius: 28px;
  transform: rotate(18deg);
  background: linear-gradient(135deg, rgba(84, 168, 255, 0.18), rgba(124, 247, 212, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
  position: relative;
  z-index: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 100%;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.contact-item:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 247, 212, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.16);
}

.contact-item>div:first-child {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(84, 168, 255, 0.2), rgba(124, 247, 212, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.contact-item:nth-child(2)>div:first-child {
  background: linear-gradient(135deg, rgba(124, 247, 212, 0.22), rgba(84, 168, 255, 0.14));
}

.contact-item:nth-child(3)>div:first-child {
  background: linear-gradient(135deg, rgba(84, 168, 255, 0.24), rgba(133, 182, 255, 0.16));
}

.contact-item:nth-child(4)>div:first-child {
  background: linear-gradient(135deg, rgba(124, 247, 212, 0.18), rgba(142, 209, 255, 0.16));
}

.contact-item>div:last-child {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.contact-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.98rem;
  line-height: 1.35;
  color: #f5fbff;
}

.contact-item span,
.contact-note {
  color: var(--muted);
  line-height: 1.7;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.contact-link:hover {
  color: #eef7ff;
  transform: translateY(-1px);
}

.contact-link:focus-visible {
  outline: 2px solid rgba(131, 199, 255, 0.72);
  outline-offset: 4px;
  border-radius: 6px;
}

.contact-item span {
  font-size: 0.98rem;
  line-height: 1.66;
  word-break: break-word;
}

.hero-copy,
.hero-point,
.stat-card,
.contact-item,
.hero-logo-card,
.contact-card {
  overflow: visible;
}

.hero p,
.hero-point span,
.stat-text,
.contact-note,
.contact-item span,
.hero-logo-card p,
.hero-logo-footer,
.section-heading p {
  text-wrap: pretty;
  overflow-wrap: break-word;
}

.contact-logo {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 100%;
}

.contact-logo .logo-card {
  width: 100%;
  max-width: none;
  animation-duration: 8s;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

main,
footer,
.social-float-stack {
  transition: filter 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 44;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  transition: opacity 0.32s ease;
}

body.nav-open main,
body.nav-open footer,
body.nav-open .social-float-stack {
  filter: blur(10px) saturate(1.08);
  transform: scale(0.995);
  pointer-events: none;
  user-select: none;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

footer {
  padding: 28px 0 36px;
  color: var(--muted);
  text-align: center;
}

.social-float-stack {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-float {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(20, 48, 31, 0.96), rgba(37, 211, 102, 0.92));
  color: #f7fff8;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 40px rgba(8, 30, 18, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.social-float:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 44px rgba(8, 30, 18, 0.52);
}

.social-float:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 5px;
}

.whatsapp-float {
  animation: waPulse 2.8s ease-in-out infinite;
}

.facebook-float {
  background: linear-gradient(135deg, rgba(14, 70, 178, 0.98), rgba(59, 130, 246, 0.92));
  box-shadow: 0 20px 40px rgba(10, 44, 110, 0.38);
  animation: fbPulse 2.9s ease-in-out infinite;
}

.facebook-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 44px rgba(10, 44, 110, 0.5);
}

.social-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-10px, 18px, 0);
  }
}

@keyframes drift {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(18px) rotate(4deg);
  }
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 20px 40px rgba(8, 30, 18, 0.42), 0 0 0 0 rgba(37, 211, 102, 0.32);
  }

  50% {
    box-shadow: 0 20px 40px rgba(8, 30, 18, 0.42), 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

@keyframes fbPulse {

  0%,
  100% {
    box-shadow: 0 20px 40px rgba(10, 44, 110, 0.4), 0 0 0 0 rgba(59, 130, 246, 0.3);
  }

  50% {
    box-shadow: 0 20px 40px rgba(10, 44, 110, 0.4), 0 0 0 14px rgba(59, 130, 246, 0);
  }
}

@keyframes navMenuIn {
  from {
    opacity: 0;
    transform: translate(-50%, -14px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 24px 0 18px;
  }

  html,
  body {
    background-color: #07111f;
  }

  body {
    background:
      radial-gradient(circle at top left, rgba(84, 168, 255, 0.28), transparent 32%),
      radial-gradient(circle at 85% 15%, rgba(124, 247, 212, 0.14), transparent 22%),
      linear-gradient(135deg, #07111f 0%, #0c1930 45%, #091220 100%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 20px;
  }

  .brand {
    min-width: auto;
  }

  .hero-copy,
  .contact-card,
  .stat-card,
  .hero-point,
  .contact-item,
  .contact-logo .logo-card {
    background: linear-gradient(180deg, rgba(10, 25, 48, 0.92), rgba(10, 25, 48, 0.76));
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
  }

  .hero-copy {
    padding: clamp(28px, 5vw, 42px);
    text-align: center;
  }

  .hero h1,
  .hero p,
  .section-heading,
  .section-heading p,
  .contact-note {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero h1 {
    line-height: 1.1;
  }

  .hero-title-brand {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title-service {
    font-size: 0.84em;
    width: auto;
    max-width: 100%;
  }

  .hero p {
    font-size: 1.06rem;
    line-height: 1.8;
  }

  .cta-row {
    justify-content: center;
  }

  .hero-visual--desktop-only {
    display: flex;
    width: 100%;
    margin-top: 6px;
    min-height: auto;
    padding: 16px;
    background:
      radial-gradient(circle at 18% 18%, rgba(84, 168, 255, 0.14), transparent 26%),
      radial-gradient(circle at 82% 78%, rgba(124, 247, 212, 0.1), transparent 24%),
      linear-gradient(180deg, rgba(10, 25, 48, 0.92), rgba(10, 25, 48, 0.76));
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow:
      0 22px 46px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-logo-card {
    width: min(100%, 620px);
    display: grid;
    grid-template-columns: 152px minmax(0, 1fr);
    grid-template-areas:
      "title title"
      "image copy"
      "footer footer";
    align-items: center;
    padding: 20px;
    gap: 14px;
  }

  .hero-visual .hero-logo-card {
    width: min(100%, 620px);
    background:
      linear-gradient(180deg, rgba(13, 29, 52, 0.92), rgba(10, 25, 48, 0.82)),
      linear-gradient(135deg, rgba(159, 206, 255, 0.08), rgba(124, 247, 212, 0.04));
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow:
      0 18px 38px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  }

  .hero-visual--desktop-only::after {
    inset: auto 12% -20% 12%;
    opacity: 0.68;
  }

  .hero-logo-copy {
    display: contents;
  }

  .hero-logo-heading {
    grid-area: title;
    text-align: center;
    font-size: clamp(1.18rem, 2.2vw, 1.42rem);
    margin-bottom: 0;
  }

  .hero-logo-card img {
    grid-area: image;
    max-width: 152px;
    margin-bottom: 0;
    justify-self: center;
    align-self: center;
    border-radius: 22px;
  }

  .hero-logo-card p {
    grid-area: copy;
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .hero-logo-footer {
    grid-area: footer;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    justify-content: center;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    column-gap: 8px;
    font-size: 0.82rem;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .benefits-slider {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
  }

  .section-heading {
    flex-direction: column;
    align-items: center;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-logo-shell {
    width: min(100%, 560px);
  }
}

@media (max-width: 960px) {
  .site-header {
    padding-top: 10px;
  }

  .site-header.scrolled .nav {
    transform: none;
    background: linear-gradient(180deg, rgba(10, 25, 48, 0.92), rgba(10, 25, 48, 0.74));
    border-color: rgba(255, 255, 255, 0.12);
    padding: 8px 10px;
    min-height: 68px;
  }

  .hero-visual--desktop-only {
    box-shadow:
      0 20px 44px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .nav {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    border-radius: 28px;
    align-items: center;
    padding: 10px 12px;
    gap: 10px;
    min-height: 74px;
    background: linear-gradient(180deg, rgba(10, 25, 48, 0.92), rgba(10, 25, 48, 0.74));
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
  }

  .nav-left {
    width: auto;
    grid-column: 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    z-index: 62;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    align-self: center;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
  }

  .nav-toggle.active {
    color: var(--text);
    background: rgba(124, 247, 212, 0.14);
    border-color: rgba(124, 247, 212, 0.2);
    transform: scale(1.04);
  }

  .nav-menu {
    position: fixed;
    left: 50%;
    top: calc(94px + env(safe-area-inset-top, 0px));
    width: min(calc(100% - 26px), 480px);
    display: grid;
    gap: 10px;
    padding: 16px;
    max-height: min(68vh, 540px);
    overflow: auto;
    opacity: 0;
    margin: 0 auto;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -14px) scale(0.96);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(10, 25, 48, 0.94), rgba(10, 25, 48, 0.82));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(22px) saturate(1.2);
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
    z-index: 61;
    transition: opacity 0.28s ease, transform 0.32s ease, visibility 0.28s ease;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav.open .nav-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
    animation: navMenuIn 0.28s ease;
  }

  .nav-menu a {
    width: 100%;
    min-height: 58px;
    justify-content: center;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.01em;
  }

  .nav-menu a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.1);
    transform: none;
  }

  .nav-menu a:hover::after {
    transform: scaleX(0);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu a.active {
    color: var(--text);
    background: linear-gradient(135deg, rgba(124, 247, 212, 0.14), rgba(84, 168, 255, 0.1));
    border-color: rgba(124, 247, 212, 0.24);
    box-shadow: 0 10px 24px rgba(84, 168, 255, 0.12);
  }

  .brand {
    grid-column: 2 / 4;
    width: 100%;
    min-width: 0;
    justify-content: stretch;
    flex-direction: row;
    align-items: center;
    margin-left: 0;
    gap: 8px;
    position: relative;
    z-index: 62;
  }

  .brand-text {
    flex: 1;
    text-align: center;
  }

  .brand-text strong {
    color: var(--text);
    font-size: 0.84rem;
    letter-spacing: 0.045em;
  }

  .brand-text span {
    color: var(--muted);
    font-size: 0.66rem;
    line-height: 1.28;
  }

  .brand img {
    width: 54px;
    height: 54px;
    border-color: rgba(84, 168, 255, 0.16);
    box-shadow: 0 16px 30px rgba(84, 168, 255, 0.12);
  }

  .nav.open .brand {
    transform: translateY(0) scale(1.01);
  }

  .nav.open .brand img {
    transform: scale(1.06);
    box-shadow: 0 18px 34px rgba(84, 168, 255, 0.18);
  }

  .site-header.scrolled .brand img {
    width: 46px;
    height: 46px;
  }

  .site-header.scrolled .brand-text strong {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }

  .site-header.scrolled .brand-text span {
    font-size: 0.58rem;
  }

  .site-header.scrolled .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-visual {
    min-height: auto;
  }

  .page-shell::before {
    opacity: 0.08;
    right: 4%;
    transform: none;
  }

  .slider-arrow {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .stat-card {
    width: min(100%, 500px);
    min-height: 132px;
  }
}

@media (max-width: 820px) {

  .hero-copy,
  .hero-visual,
  .contact-card,
  .stat-card {
    border-radius: 26px;
  }

  .hero-copy {
    padding: 26px 20px 28px;
  }

  .hero h1 {
    font-size: clamp(1.92rem, 5.1vw, 2.72rem);
    line-height: 1.12;
    max-width: 100%;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.76;
    margin-bottom: 20px;
  }

  .hero-point {
    min-height: 0;
    padding: 17px 16px;
  }

  .hero-point span {
    font-size: 0.94rem;
  }

  .hero-visual {
    min-height: auto;
    padding: 10px 0 2px;
  }

  .hero-visual--desktop-only {
    padding: 14px;
  }

  .hero-visual--desktop-only::after {
    inset: auto 8% -22% 8%;
    height: 46%;
    opacity: 0.62;
  }

  .hero-logo-shell {
    width: min(100%, 390px);
  }

  .hero-logo-card {
    width: min(100%, 430px);
    gap: 14px;
    padding: 18px;
  }

  .contact-card {
    padding: 26px 20px;
  }

  .contact-card .section-heading {
    margin-bottom: 24px;
  }

  .contact-card .section-heading>div {
    width: min(100%, 40rem);
    padding: 20px 16px 18px;
  }

  .contact-card .section-heading>div::before {
    left: 1%;
    right: 1%;
    top: 8px;
    bottom: 20px;
    transform: rotate(-2.2deg) skewX(-6deg);
  }

  .contact-card .section-heading>div::after {
    left: 10%;
    right: 10%;
    top: 3px;
    height: 58px;
  }

  .contact-card .section-heading h2 {
    font-size: clamp(2rem, 4.4vw, 2.7rem);
    margin-bottom: 12px;
  }

  .contact-note {
    margin-top: 10px;
  }

  .contact-card::before {
    left: 18px;
    right: 18px;
  }

  .contact-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-item {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .contact-item>div:first-child {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 1.15rem;
  }

  .hero-logo-card img {
    max-width: 132px;
    border-radius: 20px;
  }

  .hero-logo-heading {
    font-size: 1.06rem;
    line-height: 1.32;
  }

  .hero-logo-card p {
    font-size: 0.84rem;
    line-height: 1.78;
  }

  .hero-logo-footer {
    font-size: 0.76rem;
  }

  .hero-logo-footer .route-dot {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 4px rgba(124, 247, 212, 0.06);
  }

  .benefits-slider {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-heading {
    align-items: center;
  }

  .slider-arrow {
    display: none;
  }

  .benefits-viewport {
    padding-top: 4px;
  }

  .stat-card {
    width: min(100%, 100%);
    min-height: 118px;
    padding: 20px 18px 20px 20px;
  }

  .stat-text {
    max-width: none;
    font-size: 0.98rem;
  }

  .social-float-stack {
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max-width), calc(100% - 18px));
  }

  .hero-copy {
    padding: 22px 16px 24px;
  }

  .hero h1 {
    font-size: clamp(1.68rem, 7.4vw, 2.2rem);
    max-width: 100%;
    line-height: 1.14;
  }

  .hero-title-service {
    font-size: 0.9em;
  }

  .hero-title-brand {
    margin-bottom: 10px;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.68;
    margin-bottom: 18px;
  }

  .hero-logo-shell {
    width: min(100%, 100%);
  }

  .hero-visual--desktop-only {
    padding: 12px;
  }

  .hero-visual .hero-logo-card {
    box-shadow:
      0 16px 34px rgba(0, 0, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .hero-visual--desktop-only::after {
    inset: auto 6% -24% 6%;
    height: 48%;
    opacity: 0.56;
  }

  .hero-point {
    padding: 15px 14px;
  }

  .hero-point strong {
    font-size: 1rem;
  }

  .hero-point span {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .btn {
    width: 100%;
  }

  .benefit-slide {
    padding: 4px;
  }

  .hero-logo-card {
    width: min(100%, 100%);
    gap: 10px;
    padding: 16px;
    border-radius: 24px;
  }

  .contact-card {
    padding: 22px 14px;
  }

  .contact-card .section-heading {
    margin-bottom: 16px;
  }

  .contact-card .section-heading>div {
    padding: 12px 4px 10px;
  }

  .contact-card .section-heading>div::before {
    left: 0;
    right: 0;
    top: 10px;
    bottom: 16px;
    border-radius: 999px 999px 28px 26px / 48px 48px 22px 22px;
    transform: rotate(-1.9deg) skewX(-5deg);
  }

  .contact-card .section-heading>div::after {
    left: 10%;
    right: 10%;
    top: 5px;
    height: 38px;
  }

  .contact-card .section-heading h2 {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
    margin-bottom: 8px;
  }

  .contact-note {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.62;
    margin-top: 6px;
  }

  .contact-card::before {
    left: 14px;
    right: 14px;
  }

  .contact-list {
    gap: 10px;
    margin-top: 18px;
  }

  .contact-item {
    padding: 15px 14px;
    gap: 12px;
  }

  .contact-item>div:first-child {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 1.02rem;
  }

  .contact-item strong {
    font-size: 0.92rem;
  }

  .contact-item span {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .hero-logo-card img {
    max-width: 110px;
    border-radius: 18px;
  }

  .hero-logo-heading {
    font-size: 0.94rem;
    line-height: 1.3;
  }

  .hero-logo-card p {
    font-size: 0.8rem;
    line-height: 1.72;
  }

  .hero-logo-footer {
    gap: 8px;
    font-size: 0.72rem;
    column-gap: 6px;
  }

  .hero-logo-footer .route-dot {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 3px rgba(124, 247, 212, 0.06);
  }

  .stat-card {
    width: min(100%, 100%);
    min-height: 0;
    padding: 18px 16px;
    border-radius: 22px;
  }

  .stat-text {
    font-size: 0.95rem;
    line-height: 1.58;
    max-width: none;
  }

  .brand {
    align-items: center;
    gap: 8px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand-text strong {
    font-size: 0.68rem;
    line-height: 1.18;
  }

  .brand-text span {
    font-size: 0.58rem;
    line-height: 1.24;
  }

  .nav {
    padding: 9px 10px;
    min-height: 68px;
  }

  .nav-menu {
    top: calc(86px + env(safe-area-inset-top, 0px));
    width: min(calc(100% - 18px), 420px);
  }

  .social-float-stack {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .social-float {
    width: 56px;
    height: 56px;
    border-radius: 20px;
  }

  .social-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
}